home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class IdentityHashMap$Values extends AbstractCollection<V> {
- // $FF: synthetic field
- final IdentityHashMap this$0;
-
- private IdentityHashMap$Values(IdentityHashMap var1) {
- this.this$0 = var1;
- }
-
- public Iterator<V> iterator() {
- return new IdentityHashMap.ValueIterator(this.this$0, (IdentityHashMap.1)null);
- }
-
- public int size() {
- return IdentityHashMap.access$000(this.this$0);
- }
-
- public boolean contains(Object var1) {
- return this.this$0.containsValue(var1);
- }
-
- public boolean remove(Object var1) {
- Iterator var2 = this.iterator();
-
- while(var2.hasNext()) {
- if (var2.next() == var1) {
- var2.remove();
- return true;
- }
- }
-
- return false;
- }
-
- public void clear() {
- this.this$0.clear();
- }
-
- // $FF: synthetic method
- IdentityHashMap$Values(IdentityHashMap var1, IdentityHashMap.1 var2) {
- this(var1);
- }
- }
-